home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Word / U-V / UseNet#28 < prev    next >
Encoding:
Text File  |  1987-05-25  |  29.1 KB  |  748 lines  |  [TEXT/MACA]

  1. Usenet Mac Digest     Friday, April 3, 1987          Volume 3 : Issue 28 
  2.  
  3. Today's Topics:
  4.      Re: Rotated Text?
  5.      Re: SuperSpool
  6.      Re: MPW C annoyances....
  7.      Finder 5.4 bug
  8.      Re: Case Signatures
  9.      Resedit PICT question.
  10.      Re: MacNifty Audio Digitizer Info?
  11.      Mods to System 4.0 via ResEdit
  12.      Re: SuperSpool (bugs)
  13.      Various SE Problems
  14.      vt62/72 emulation for the Mac
  15.      Definition of SMUS-IFF files for Macintosh?
  16.      Re: Mac II mouse-
  17.      MacBus Box --> Lightspeed C
  18.      LaserWriter type
  19.      Re: Various SE Problems
  20.      Re: LaserWriter type
  21.      Imagewriter2 Weirdness
  22.      Re: Mods to System 4.0 via ResEdit
  23.      Re: Resedit PICT question.
  24.      Mathematical/Gothic font
  25.      LaserSpeed
  26.      re: LSP on 020 machines
  27.  
  28. ---------------------------------------------------------------------- 
  29.  
  30. From: jww@sdcsvax.UCSD.EDU (Joel West)
  31. Subject: Re: Rotated Text?
  32. Date: 1 Apr 87 02:02:14 GMT
  33. Organization: Western Software Technology, Vista, CA
  34.  
  35. There are two things to do with rotated text.  The first is displaying
  36. it on the screen and for the ImageWriter.  The second is keeping it as
  37. text for the LaserWriter.
  38.  
  39. For the first, just image it off screen, use the measuring trap and  the
  40. ascent/descent information to build a boundary rectangle.  Then just
  41. rotate the bits using any transposition algorithm (see, for example
  42. 'PICT Rotation with Copybits', Bob Denny, MacTutor 11/85).
  43.  
  44. Equally important is to keep it as text in the QD picture, so the LW
  45. will print it right.  Basically, you want three picture
  46. comments--TextBegin, TextCenter and TextEnd.  This allows you to print
  47. Helvetica rotated 90 degrees at 300 dpi.
  48.  
  49. See Tech Note #91 (optimizing for LW) and Tech Note #27 (because this is
  50. what MacDraw does).
  51. -- 
  52.     Joel West
  53.     {ucbvax,ihnp4}!sdcsvax!jww    (ihnp4!gould9!joel once I fix news)
  54.     jww@sdcsvax.ucsd.edu    if you must
  55.  
  56. ------------------------------
  57.  
  58. From: lonetto@phri.UUCP (Michael Lonetto)
  59. Subject: Re: SuperSpool
  60. Date: 31 Mar 87 15:18:02 GMT
  61. Organization: Public Health Research Inst. (NY, NY)
  62.  
  63. Other interesting questions (for use with a plus):
  64.  
  65. f) Do any of these work with non apple printer drivers (GDT Softworks's
  66. "Brother HR Series" and MSWord 3.0's "Serial Printer" specifically, if
  67. anyone has tried). g) Related to above:  Do they work with non apple
  68. printers, such as the Brother HR15 XL I'm using (I know, but my wife
  69. needs LQ output).
  70.  
  71. I have a Jasmine 20 meg HD with >10 meg free, so efficient space
  72. utilization for print spooling is not much of a consideration.
  73.  
  74. BTW:  If anyone in the NYC area knows a good place to buy Brother
  75. printer accessories please drop me a line.  This printer NEEDS a tractor
  76. drive.
  77. -- 
  78. Michael Lonetto    UUCP:(allegra!phri!lonetto) 
  79. USMAIL: Public Health Research Institute, 455 1st Ave, NY, NY 10016  
  80.  
  81. ------------------------------
  82.  
  83. From: johan@apple.UUCP (Johan Strandberg)
  84. Subject: Re: MPW C annoyances....
  85. Date: 1 Apr 87 02:06:19 GMT
  86. Organization: Apple Computer Inc., Cupertino, USA
  87.  
  88. zrm@eddie.MIT.EDU (Zigurd R. Mednieks) writes:
  89. >Most Macintosh code, though, is going nowhere other than a Macintosh. In
  90. >light of that fact, it would have been nice if Apple had specified its
  91. >Apple-label  C compiler to conform more closely to its Pascal compiler
  92. >datatypes.
  93.  
  94. Well, I just had to comment on this.  Anybody else from the Development
  95. Tools or A/UX groups should probably pitch in too.
  96.  
  97.      o  Much Macintosh code will be ported to a non-Macintosh
  98.     environment.  That is A/UX with its built in toolbox support.
  99.  
  100.      o  When having the choice of being compatible with the Pascal or
  101.     the A/UX C-compiler, I personally choose the later.
  102.  
  103.      o  Why does everyone assume that INTEGER == int when you could as
  104.     well write INTEGER == short?  Yes, I know there are cases when
  105.     having a short int helps, but I have to say that writing
  106.     flexible code for a 16 bit int environment is a royal pain.
  107.  
  108.      o  16-bit ints break much of the standard C libraries. To give a
  109.     few examples:
  110.  
  111.         strlen() returns an int.  If your string is longer than
  112.         64K then the value returned (IF IT RETURNS!) is
  113.         undefined.  The result is that I have to hand code
  114.         around this whenever there is even a chance that the
  115.         string is looong.
  116.  
  117.         read() takes an int as the nbyte-s argument.  This
  118.         means that I can't read more than 64K bytes at a time.
  119.         (Actually 32K since it's normally an int and not
  120.         unsigned.)  This is a real pain since this is a very
  121.         common case.
  122.  
  123.     there are *many* more.
  124.  
  125. The following two points are not very important but:
  126.  
  127.      o  Historically, portability is enhanced if sizeof(int) >=
  128.     sizeof(char *).
  129.  
  130.      o  Some quick hacks are easier if sizeof(int) >= sizeof(char *).
  131.     I really should be ashamed saying this, but it's true, and for
  132.     throwaway code, who cares? (Assuming the code actually gets
  133.     thrown...)
  134.  
  135. I have used both MPW (I wrote Rez and DeRez) and LightSpeed (my favorite
  136. prototyping environment [sorry DevTools :-)] ) extensively and I get bit
  137. (pun intended) by the 16-bit problem every time.  Not in the sense of
  138. portability (since good coding style takes care of it pretty much
  139. automatically), but in the sense that it's hard to avoid passing
  140. arguments that are greater than 64K to libraries, just so that it will
  141. work even under LightSpeed. As a matter of fact, much of my prototyping
  142. is broken for large data under LightSpeed because I know that I will run
  143. any production code under a *real* C compiler [sorry LightSpeed :-)]
  144. with 32 bit ints (MPW or A/UX).
  145.  
  146. In general, I think that having an 16-bit int is OK if you have a 64K
  147. address space (such as a PDP-11), or it is very painful to move 32 bit
  148. stuff around (80*86 where the address space isn't that much to talk
  149. about anyway).  The Macintosh though uses the 68xxx architecture where
  150. there are few if any penalties for using 32-bit ints.  The Macintosh is
  151. a megabyte class machine (my Macintosh ][ has 5 meg at the moment, i.e.
  152. it's not even fully stuffed) and the data typically handled is in the
  153. n*64K range where n is >>1.
  154.  
  155. In conclusion, I think (and this and all the above is *my* opinion, not
  156. Apple Computers) that the 16-bit int is a reminiscence from small memory
  157. spaces (i.e. less than half a megabyte) and I am looking forward to when
  158. we will have 64 bit pointers, 64 bit ints and 128 bit longs. (Only 16Gig
  159. address space, how quaint, I bet it can't even do real time ray
  160. tracing...) although that day might be a few years of yet......
  161. -- 
  162.     Sincerely yours,
  163.     Johan
  164. ____________________________
  165.  
  166.     Johan Strandberg
  167.     Toolsmith
  168.     Apple Computer, Inc.
  169.  
  170. USENET:    {mtxinu!ucbvax,nsc,voder,sun}!apple!johan.UUCP
  171. CSNet:    johan@apple.CSNET
  172.  
  173. ------------------------------
  174.  
  175. From: c60a-3eb@tart3.BERKELEY.EDU (Bob Heiney)
  176. Subject: Finder 5.4 bug
  177. Date: 31 Mar 87 23:18:43 GMT
  178. Organization: University of California, Berkeley
  179.  
  180.     In certain circumstances, Finder 5.4 will empty the trash on its own
  181. initiative when it really shouldn't.  To see an example of this, start
  182. your Mac.  Then eject the system disk and insert a data disk.  Get an
  183. application file you don't want (or duplicate an existing file to make
  184. something to throw out) and drag it to the trash.
  185.  
  186.     You will now be prompted to insert the system disk because the Finder
  187. wants to put up the "Do you really want to remove the application
  188. xxxxxx" alert.  To do this it needs the following (non-pre-loaded)
  189. resources:
  190.  
  191. from the system file:  warning icon from finder resource fork:  alert
  192. template, corresponding DITL,
  193.                 STR# with message, fat trash icon.
  194.  
  195. If you don't cancel from the alert, you are prompted to put the data
  196. disk back in the drive and now comes the problem: the file you put in
  197. the trash is gone from the disk like it should be but it isn't in the
  198. trash!  The Finder is not only putting the application in the trash, but
  199. it is emptying the trash as well.
  200.  
  201.     My work-around to this problem is to mark all of the above mentioned
  202. resources as requiring pre-load with ResEdit (I don't remember their
  203. ID's).
  204.  
  205.     This would be a good thing to fix in System 4.1/Finder 5.5.
  206.  
  207.                     --- Bob Heiney
  208. -- 
  209. ---------------------------------------------------------------------
  210. Bob Heiney    c60a-3eb@lemon.Berkeley.Edu
  211.         c60b-hd@buddy.Berkeley.Edu
  212.  
  213. "To stay young requires unceasing cultivation of the ability to 
  214.    unlearn old falsehoods."(Robert A. Heinlein)
  215. ---------------------------------------------------------------------
  216.  
  217. ------------------------------
  218.  
  219. From: dennisg@felix.UUCP (Dennis Griesser)
  220. Subject: Re: Case Signatures
  221. Date: 1 Apr 87 02:23:22 GMT
  222. Organization: FileNet Corp., Costa Mesa, CA
  223.  
  224. Why manufacture a conspiracy to explain this?  The way I heard it was...
  225.  
  226. The original Mac and Fat Mac had the same cases, with signatures.
  227.  
  228. The Mac+ introduced a SCSI port, and that brought substantial changes in
  229. the layout and size of the connectors in back.  When Apple had the
  230. existing molds reworked, SOME of the signatures were lost in the
  231. process.  They didn't bother to put them back.
  232.  
  233. The new cases probably come from entirely new molds.  By this time,
  234. Apple was tired of the whole signature thing anyway, and just never put
  235. 'em on.
  236.  
  237.  
  238. ------------------------------
  239.  
  240. From: eckert@lll-lcc.aRpA (Philip D. Eckert)
  241. Subject: Resedit PICT question.
  242. Date: 2 Apr 87 00:06:27 GMT
  243. Organization: CRG, Lawrence Livermore Labs
  244.  
  245. When using Resedit, I sometimes happen across some very interesting PICT
  246. resources within applications.  Is there anyway that I can pull this
  247. data out and make a file that either Macpaint or Fullpaint can look at ?
  248.  
  249. And while I'm on the subject, is there a way I can pull out the sound
  250. data from applications and save it to be played with one of the sound
  251. players ?
  252.  
  253. Any help appreciated.  Thank you.
  254.  
  255. ------------------------------
  256.  
  257. From: moriarty@tc.fluke.COM (Jeff Meyer)
  258. Subject: Re: MacNifty Audio Digitizer Info?
  259. Date: 1 Apr 87 23:57:23 GMT
  260. Organization: John Fluke Mfg. Co., Inc., Everett, WA
  261.  
  262. In article <1382@tekig4.TEK.COM>, bradn@tekig4.TEK.COM (Bradford
  263. Needham) writes:
  264. > I'd like some information about the MacNifty audio digitizer for the Mac.
  265. > Who makes it and what's their address?  They don't seem to be at the address
  266. > I have.
  267.  
  268. While it is distributed by The Kette Group, the creators are
  269.  
  270.  Impulse Inc.
  271.  6860 Shingle Creek Pkwy., #110
  272.  Minneapolis, MN 55430
  273.  
  274. The number is 1-800-328-0184 (but they say for "orders" -- I can't find
  275. one for questions).  They're having a "special" for right now --
  276. digitizer hardware & new software (called SoundWave) for $154.95.
  277.  
  278. > Is the thing Mac+ (actually SE) compatible?  Is anybody using one on a Mac+?
  279. > Is the software copy-protected?
  280.  
  281. It is Mac+ compatible -- IF you have an adapter.  I use the old
  282. ThunderWare ThunderScan adapter -- the new one (which runs off of the
  283. power pin on the external drive port) is even nicer.  So that's an Extra
  284. $25 if you use a Mac+ or an SE (I have used it on an SE for about six
  285. months).
  286.  
  287. The software is not copy-protected -- all of mine is on my DataFrame. 
  288. Much of the software is PD, other than the SoundCap program (player,
  289. SoundInit, etc.).
  290.  
  291. > Can you easily incorporate digitized sounds into a program (e.g., Aztec C)?
  292. > Has anyone done this with Aztec C?
  293.  
  294. No experience here, but several programs (NetTrek and others) use
  295. SoundCap sound files with them.
  296.  
  297. > What do you like/dislike about the MacNifty or the company that makes it?
  298.  
  299. As companies go, I have to give Impulse a B.  My major complaint would
  300. be their documentation; it's folksy, but it's often non-intuitive and
  301. often seems to feel that you should "figure it out yourself".  Luckily,
  302. most of the software is pretty well thought out.
  303.  
  304. My major complaint doesn't come to MacNifty's door -- I want to add
  305. sound to my animation.  They thoughtfully provided a program for putting
  306. sound in VideoWorks productions -- but I have found VideoWorks
  307. impractical for my efforts.  What I REALLY want is to use it with is
  308. MacMovies, but I have been told that MacMovies has no options to allow
  309. sound to be used during MacMovies' animations [If this is not true,
  310. PLEASE let me know!].  The other way that this could be solved would be
  311. multi-tasking (i.e. animation and SoundPlay at the same time), but we
  312. all know that isn't within the realm of reality, for the Mac+ at least.
  313.  
  314. OK, now for compliments.  Inputting sound through a microphone (or
  315. better, tape) is a cinch, though it should be emphasized that with the
  316. size of digitized sound, lots of memory and disk space are a big help. 
  317. The compressed option in SoundCap makes this less essential (but you
  318. loose quality); still, 1 Meg of memory and a 20 Meg hard drive have been
  319. a big help.  Once you've got the sound in, it is VERY simple to
  320. manipulate the sound -- ramping, amplification, reverberation, changing
  321. tempo, and about 50 things I don't understand, not being a sound
  322. technician (note: not due to bad documentation on Impulse's part here --
  323. I'm just too lazy to read sections I'm not currently using).
  324.  
  325. As to support, they do a nice job; quarterly newsletter, free upgrades
  326. for software bug fixes (I have gotten two free software upgrades), and
  327. reasonable prices for major software upgrades.  Case in point: Just got
  328. a note from them advertising a new piece of software that replaces
  329. SoundCap -- allows you to mix several digitized sounds into one.  I can
  330. USE that, believe me!  Price: $25.  Reasonable.  I believe this will be
  331. going out with digitizers from now on.  You can get it for better prices
  332. through mail order - but they may not be selling it with the new
  333. software.
  334.  
  335. I admit that the applications for such a device/software are currently
  336. not great unless you're a programmer (again, assuming that one can
  337. access sounds with most current Mac languages).  I've stuck basically to
  338. (ugh) VideoWorks movies and startup sounds for my Mac (which are a lot
  339. of fun).  Not high up in the Need category for me -- but the
  340. Satisfaction ratio has been high.
  341.  
  342. If you have more questions, drop me a note...
  343. -- 
  344.                                 "And God help whoever
  345.                                  gets in our way!"
  346.                                                    "Dimitri...?"
  347.                                 "YES, Alexi?
  348.                                                    "We're not supposed to
  349.                                                     believe in God."
  350.                                 "Oh.  That's right."
  351.  
  352.                                         Moriarty, aka Jeff Meyer
  353. INTERNET:     moriarty@fluke.COM
  354. Manual UUCP:  {uw-beaver, sun, allegra, sb6, lbl-csam}!fluke!moriarty
  355. CREDO:        You gotta be Cruel to be Kind...
  356. <*> DISCLAIMER: Do what you want with me, but leave my employers alone! <*>
  357.  
  358. ------------------------------
  359.  
  360. From: myers@uwmacc.UUCP (Jeff Myers)
  361. Subject: Mods to System 4.0 via ResEdit
  362. Date: 2 Apr 87 05:34:03 GMT
  363. Organization: UWisconsin-Madison Academic Comp Center
  364.  
  365. Bob Heiney's recent comments on the problems one has with System 4.0 on
  366. floppy only systems led me to finally tailor things for myself.  His
  367. directions were a bit sketchy if you're a novice ResEdit user, and the
  368. fixes below are for two separate problems rather than just the trash
  369. auto-empty problem which he was concerned with.  The other 'problem'
  370. concerns an additional disk swap often initially called for in certain
  371. instances (usually when you are doing disk copies or copying files
  372. between two disks without the system disk sitting in a drive).
  373.  
  374. Make the following mods to the new System file (using Get Info in
  375. ResEdit for the appropriate resources):
  376.  
  377.     ICON        ! in a triangle        check preload box
  378.     ICON        hand in stop sign    check preload box
  379.  
  380. Make the following mods to the new Finder (you may wish to edit the
  381. fields at the end of the LAYO resource while you are at it (I turn off
  382. trash warnings and set always grid drags)):
  383.  
  384.     ALRT        134            check preload box
  385.     ALRT        129            check preload box
  386.     DITL        134            check preload box
  387.     DITL        129            check preload box
  388.     ICN#        fat trash can        check preload box
  389.     ICN#        default application    check preload box
  390.  
  391. Criticisms, comments, or additional suggestions encouraged.  I also
  392. unset the purgeable setting for the two System file ICON's, but I'm not
  393. entirely sure that one doesn't have deleterious effects, but I can't see
  394. why it would and I don't really want to have to swap the system disk
  395. back in just to load one of those ICONs when I'm in dire straights.
  396.  
  397. Is anyone at Apple willing to defend the choices they made for the
  398. settings used in the SE system disks actually shipped?  By the way, you
  399. should thank your favorite deity (or non-deity) that the Mac operating
  400. system is designed in such a compartamentalized fashion so that
  401. non-68000 hackers can still twiddle bits and actually accomplish
  402. something.  Well done, Apple!
  403.  
  404. -- 
  405. Jeff Myers                The views above may or may not
  406. University of Wisconsin-Madison        reflect the views of any other
  407. Madison Academic Computing Center    person or group at UW-Madison.
  408. ARPA: myers@vms.macc.wisc.edu
  409. UUCP: ..!{harvard,ucbvax,allegra,topaz,akgua,ihnp4,seismo}!uwvax!uwmacc!myers
  410. BitNet: MYERS at WISCMACC
  411.  
  412. ------------------------------
  413.  
  414. From: oster@lapis.berkeley.edu (David Phillip Oster)
  415. Subject: Re: SuperSpool (bugs)
  416. Date: 1 Apr 87 22:29:22 GMT
  417. Organization: University of California, Berkeley
  418.  
  419. I run superspool on a DataFrame 20 system along with MacsBug. SuperSpool
  420. often keeps draft printing from workign at all, and high quality
  421. printing works only as long as the queue of files to print is non-empty.
  422. If I let the  queue emtpy, when I next try to print the system tells me
  423. that there is no printer driver. The only fix is to reboot. As things
  424. stand, its worth what I paid for it.  Any suggestions?
  425. -- 
  426. --- David Phillip Oster        -- "We live in a Global Village."
  427. Arpa: oster@lapis.berkeley.edu  --
  428. Uucp: ucbvax!ucblapis!oster     -- "You are Number Six."
  429.  
  430. ------------------------------
  431.  
  432. From: derek@gucis.OZ (Derek Austin)
  433. Subject: Various SE Problems
  434. Date: 1 Apr 87 07:35:25 GMT
  435. Organization: The Byte Centre
  436.  
  437. Can anyone provide any assistance with the following problems observed
  438. on SEs:
  439.  
  440. 1.    Documents copied to the internal hard disk from disks previously
  441.     used with a Mac+ sometimes lose their creator. 
  442.     E.g., MacTerminal documents can no longer find their application
  443.     when double-clicked.
  444.  
  445. 2.    Escape, control, and arrow keys don't work in MacTerminal.  There
  446.     looks like there should be a way to fix this in the new control
  447.     panel but  can't find how.
  448.  
  449. 3.    With switcher 5.1 (at least), trying to change up the folder
  450.     hierarchy is difficult because although you can pull down the
  451.     list of superior folders, the names of the folders are invisible.
  452.  
  453. 4.    With 3COM software, half the keyboard "disappears".
  454.  
  455.  
  456. Sorry for the lack of detail in the above - I haven't seen them all
  457. myself. Any ideas would be of interest.
  458.  
  459. -- 
  460. Derek Austin        ACSnet:    derek@gucis.oz    
  461. The Byte Centre        ARPA:    derek%gucis.oz@seismo.css.gov
  462. 49 Park Road        CSNET:    derek@gucis.oz    
  463. Milton    4064        JANET:    gucis.oz!derek@ukc    
  464. Australia        PHONE:  +61 7 369 2699
  465.             VIATEL: 737676700
  466. UUCP:    {seismo,hplabs,mcvax,ukc,nttlab}!munnari!gucis.oz!derek
  467.  
  468. ------------------------------
  469.  
  470. From: derek@gucis.OZ (Derek Austin)
  471. Subject: vt62/72 emulation for the Mac
  472. Date: 2 Apr 87 02:44:31 GMT
  473. Organization: The Byte Centre, 49 Park Rd., Milton, 4064. AUSTRALIA.
  474.  
  475. Does anyone know of a terminal emulator that includes a vt62 or vt72
  476. emulation?
  477.  
  478. Thanks,
  479.  
  480.  
  481.     derek
  482.  
  483. ------------------------------
  484.  
  485. From: ahby@meccts.MECC.COM (Shane P. McCarron)
  486. Subject: Definition of SMUS-IFF files for Macintosh?
  487. Date: 1 Apr 87 17:34:58 GMT
  488. Organization: MECC Technical Services, St. Paul, MN
  489.  
  490. We need the structure definition for the Simple Music Interchange File
  491. Format (SMUS-IFF).  SMUS files are used by "standard" music programs on 
  492. the Mac to transfer data.  We would like to be able to intelligently 
  493. interpret the data in these files, and obviously need the definition 
  494. before we can do that.  Please reply via E-Mail.  I will summarize to 
  495. the net if I find out anything interesting.
  496. -- 
  497. Shane P. McCarron        UUCP    ihnp4!meccts!ahby, ahby@MECC.COM
  498. MECC Technical Services        ATT    (612) 481-3589
  499. (C) Copyright 1987 Shane P. McCarron
  500.     Redistribution allowed only if your recipients can redistribute
  501.  
  502. ------------------------------
  503.  
  504. From: jww@sdcsvax.UCSD.EDU (Joel West)
  505. Subject: Re: Mac II mouse-
  506. Date: 2 Apr 87 16:03:01 GMT
  507. Organization: Western Software Technology, Vista, CA
  508.  
  509. A third party 3-button mouse has been developed for the Apple DeskTop
  510. Bus, but won't be announced until A/UX is available, since there's no
  511. point.  Apple has flatly rejected > 1 button for their interfaces, but I
  512. assume one of the three buttons will still work with the Toolbox (maybe
  513. the other two can be mapped to shift-click and option-click.)
  514.  
  515. The X Window System (which runs under UNIX) requires at a minimum of two
  516. buttons, although three is better.  There is no way to fake it with one
  517. button, since it also uses keyboard modifiers.
  518.  
  519. The mouse has caught on, but let's look at how:
  520.     1 button    Apple II, Macintosh
  521.     2 button    IBM PC family
  522.     3 button    UNIX workstations
  523.  
  524. Let's here it for industry standardization.  At least everyone
  525. understands what RS-232 is. :-)
  526. -- 
  527.     Joel West
  528.     {ucbvax,ihnp4}!sdcsvax!jww    (ihnp4!gould9!joel once I fix news)
  529.     jww@sdcsvax.ucsd.edu    if you must
  530.  
  531. ------------------------------
  532.  
  533. From: rs4u#@ANDREW.CMU.EDU (Richard Siegel)
  534. Subject: MacBus Box --> Lightspeed C
  535. Date: 1 Apr 87 17:55:05 GMT
  536.  
  537. Has anyone had any success porting the MacBus SCSI/IEEE controller
  538. interface routins (which originally were in Megamax C) over to
  539. Lightspeed C? Or to Lightspeed Pascal?
  540.  
  541.         --Rich
  542.  
  543. ------------------------------
  544.  
  545. From: merchant@dartvax.UUCP (Peter Merchant)
  546. Subject: LaserWriter type
  547. Date: 1 Apr 87 23:50:21 GMT
  548. Organization: Dartmouth College, Hanover, NH
  549.  
  550. I know that I can change a LaserWriter's name to something other than
  551. "LaserWriter".  Is there any way to change the LaserWriter's TYPE from
  552. "LaserWriter" to something else.  I know I'll also have to customize a
  553. driver for it. -- "You make everything groovy..."           Peter
  554. Merchant (merchant@dartvax.UUCP)
  555.  
  556. ------------------------------
  557.  
  558. From: skip@apple.UUCP (Brian Schipper)
  559. Subject: Re: Various SE Problems
  560. Date: 2 Apr 87 20:58:35 GMT
  561. Organization: Apple Computer Inc., Cupertino, USA
  562.  
  563. In article <500@gucis.OZ> derek@gucis (Derek Austin) writes:
  564. >2.    Escape, control, and arrow keys don't work in MacTerminal.  There
  565. >    looks like there should be a way to fix this in the new control
  566. >    panel but  can't find how.
  567.  
  568. A new release of MacTerminal (2.2) will be available in May.  This will
  569. correct any problems with the new keyboards.
  570.  
  571. ------------------------------
  572.  
  573. From: jww@sdcsvax.UCSD.EDU (Joel West)
  574. Subject: Re: LaserWriter type
  575. Date: 3 Apr 87 02:11:54 GMT
  576. Organization: Western Software Technology, Vista, CA
  577.  
  578. In article <5935@dartvax.UUCP>, merchant@dartvax.UUCP (Peter Merchant)
  579. writes:
  580. > I know that I can change a LaserWriter's name to something other than
  581. > "LaserWriter".  Is there any way to change the LaserWriter's TYPE from
  582. > "LaserWriter" to something else.  I know I'll also have to customize a
  583. > driver for it.
  584.  
  585. Look at STR -4091, 4094, 4095, 4096.  You also have to go after some of
  586. the DITL resources.
  587.  
  588. Of course, you know that once you change all the strings, the LW driver
  589. will never find any LW's using NBP.  You might want to look at the
  590. Chooser docs in the Device Mgr section of IM Volume IV.
  591. -- 
  592.     Joel West
  593.     {ucbvax,ihnp4}!sdcsvax!jww    (ihnp4!gould9!joel once I fix news)
  594.     jww@sdcsvax.ucsd.edu    if you must
  595.  
  596. ------------------------------
  597.  
  598. From: fritz@phri.UUCP (Dave Fritzinger)
  599. Subject: Imagewriter2 Weirdness
  600. Date: 3 Apr 87 01:45:19 GMT
  601. Organization: Public Health Research Inst. (NY, NY)
  602.  
  603. We just acquired an Imagewriter 2 to go along with our Mac+, and have 
  604. suddenly discovered the following problem.  When we start to print a
  605. file, a random character shows up on the top left hand corner of the
  606. first page.  The characters seen so far include "@" and "~".  We have
  607. seen this behavior so far in printing Word3, Word1.05 and CricketGraph
  608. files.  Does any one out there  have any idea what is going on, and how
  609. we can stop this behavior?   Thanks Dave Fritzinger
  610. -- 
  611. allegra!phri!fritz
  612. Public Health Research Institute
  613. 455 1st Ave
  614. New York, NY 10016
  615. 212-578-0855
  616.  
  617. BTW, the file itself prints ok, we just get that unwanted character on the top
  618. left hand corner.
  619.  
  620. ------------------------------
  621.  
  622. From: c60a-3eb@tart26.BERKELEY.EDU (Bob Heiney)
  623. Subject: Re: Mods to System 4.0 via ResEdit
  624. Date: 2 Apr 87 20:35:55 GMT
  625. Organization: University of California, Berkeley
  626.  
  627. It is also necessary to mark the STR# resource that contains the message
  628. asking you to verify putting the application in the trash.  I don't
  629. remember the resource ID (if I only had a modem this wouldn't happen!)
  630. but I think that the message is in the highest STR# in the Finder's
  631. resource fork (ID 134?).
  632.  
  633. When you check the preload box for default application, you might as
  634. well check preload for default document, since this gets used a lot.
  635.  
  636. -- 
  637. ---------------------------------------------------------------------
  638. Bob Heiney    c60a-3eb@lemon.Berkeley.Edu
  639.         c60b-hd@buddy.Berkeley.Edu
  640.  
  641. "To stay young requires unceasing cultivation of the ability to 
  642.    unlearn old falsehoods."(Robert A. Heinlein)
  643. ---------------------------------------------------------------------
  644.  
  645. ------------------------------
  646.  
  647. From: sdh@thumper.UUCP
  648. Subject: Re: Resedit PICT question.
  649. Date: 2 Apr 87 15:46:25 GMT
  650.  
  651.     The data from any resource can be put into the clipboard via cut or
  652. copy.  Since ResEdit recognizes the PICT resource type as special, it
  653. will put it in the clipboard as a picture, and not text (data).  The
  654. transition to Macpaint is easy. Here are steps:
  655.     in ResEdit:
  656.         1) open the PICT resource file you are interested in.
  657.         2) select the specific PICT you want by single clicking on
  658.             it (a rectangle should appear around it).
  659.         3) select Copy from the Edit menu (clover-c)
  660.         4) open the scrapbook Desk Accessory.
  661.         5) Select Paste from the Edit menu (clover-v) That puts the picture in
  662. the scrapbook.  If you have trouble putting it in the scrapbook, paste
  663. the PICT instead into the PICT resource in the file "Scrapbook File". 
  664. The is effective the same as pasting into the Scrapbook. Now it is a
  665. matter of getting them into Macpaint.
  666.     in MacPaint:
  667.         1) open the Scrapbook DA.
  668.         2) Select the PICT you want.
  669.         3) Select Copy from the Edit menu (clover-c)
  670.         4) Close the Scrapbook
  671.         5) select Paste from the Edit menu (clover-v) That's it. The process
  672. will also go in reverse. A few Caveats for going in reverse: Make sure
  673. the dimensions of the pictures are the same!  Some programs will bomb if
  674. they aren't. When pasting a resource in ResEdit, ResEdit will choose a
  675. unique resource ID.  You must change the this ID to what the old
  676. resource was.  The steps are simply: remove old resource.  Paste in new
  677. one.  Alter ID so that it is correct. 
  678. > And while I'm on the subject, is there a way I can pull out the sound data
  679. > from applications and save it to be played with one of the sound players ?
  680. >
  681.     Probably, but you'd have to know where the data is to get at it.
  682.  
  683. Steve "Retief of the CDT" Hawley (decvax, ucbvax)!bellcore!sdh
  684.  
  685. ------------------------------
  686.  
  687. From: sce@runx.ips.oz (Simon Evans)
  688. Subject: Mathematical/Gothic font
  689. Date: 1 Apr 87 07:25:25 GMT
  690. Organization: RUNX Un*x Timeshare.  Sydney, Australia.
  691.  
  692. Does anyone have or know of a LaserWriter (or bitmap) font that
  693. resembles the "Gothic" lower case font used in many Mathematical texts
  694. to represent ideals of a ring? I would appreciate any details (eg some
  695. one who sells such a font, or the name of some pd disk (BMUG etc) that
  696. has such a font)
  697.  
  698.     Thanks for any tips or pointers,
  699.  
  700.         Simon Evans.
  701.  
  702. [I intend to use Word 3.0 to prepare a 60 page Mathematical essay this
  703. year and therefore need that particular font to represent ideals]
  704. -- 
  705. Simon Evans              ISD: +61 2 90-7031 or +61 2 799-1696
  706. c/o JAM Software Pty Ltd     STD:  (02) 90-7031 or (02) 799-1696
  707. 27A Nowranie Street         ACS: sce@runx.ips.oz
  708. Summer Hill NSW  2130           UUCP: seismo!munnari!runx.ips.oz!sce
  709. AUSTRALIA                       ARPA: munnari!runx.ips.oz!sce@SEISMO
  710. (4th year student, Dept Pure Mathematics, University of Sydney, Australia)
  711.  
  712. ------------------------------
  713.  
  714. From: rs4u#@ANDREW.CMU.EDU (Richard Siegel)
  715. Subject: LaserSpeed
  716. Date: 3 Apr 87 12:40:15 GMT
  717.  
  718. Has anyone tried "LaserSpeed", THINK's new LaserWriter spooler?
  719.  
  720. In light of their accomplishments with Lightspeed C and Pascal, 
  721.  
  722.  
  723.         --Rich
  724.  
  725. ------------------------------
  726.  
  727. From:   IN%"BILLING%uofmcc.bitnet@wiscvm.wisc.edu" 
  728. Subject: re: LSP on 020 machines
  729.  
  730. I have contacted THINK about the problems of LSP v1.0 running on 68020
  731. machines and have been informed that they are aware of some problems and
  732. are currently testing a new version (v1.01) which will correct these.
  733.  
  734. I suspect that the release of this software will be within the next two
  735. months (that is really only a guess).
  736.  
  737. If I find any more info, I will surely pass it along.
  738.  
  739. Wayne Billing      NetNORTH address <BILLING@UOFMCC> 
  740. "Dinsdale!" - Spiny Norman
  741.  
  742. ------------------------------
  743.  
  744. End of Usenet Mac Digest
  745. ************************
  746.  
  747.